Skip to main content
This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal

Notes/Domino 6 and 7 Forum

Notes/Domino 6 and 7 Forum


  

PreviousPrevious NextNext


~Ted Desveluchekings 28.Oct.03 08:04 PM a Web browser
Domino Designer 6.0.1 Windows NT


Hello,

I have a database where completed documents are eventually sent to an archive database. When this happens, the documents' responses become orphans. So I wrote a "Delete Orphans" agent that looks like this:

Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Set db=session.currentdatabase
Dim doc As NotesDocument
Dim parentdoc As NotesDocument
Dim dc As NotesDocumentCollection
Set dc = db.AllDocuments
For j = 1 To dc.Count
Set doc = dc.GetNthDocument(j)
If doc.IsResponse = True Then
Set parentdoc = db.GetDocumentByUNID(doc.ParentDocumentUNID)
On Error Resume Next
If (parentdoc.Responses Is Nothing) Then
Call doc.Remove(True)
End If
End If
Next j
End Sub


Since the parent document was deleted, I was hoping to satisfy the "Is Nothing" condition. Instead, the previous document's parent is still there. Or, if the first document is an orphan, I get an "Invalid universal ID" message.

This agent used to work and now it doesn't. The only thing I could possibly have changed is the "Soft Deletion" option.

Can someone tell me how to make this work?


Thanks






Deleting Orphans (~Ted Desveluche... 28.Oct.03)
. . Here is an archiving routine I use.... (~Fred Xanjumima... 28.Oct.03)
. . RE: Deleting Orphans (~Bella Asaresab... 28.Oct.03)
. . RE: Deleting Orphans (~Bill Frokimari... 28.Oct.03)





  Document options
Print this pagePrint this page

 Search this forum

  Forum views and search
Date (threaded)
Date (flat)
With excerpt
Category
Platform
Release
Advanced search

 RSS feedsRSS
All forum posts RSS
All main topics RSS